This forum is closed to new posts and
responses. Individual names altered for privacy purposes. The information contained in this website is provided for informational purposes only and should not be construed as a forum for customer support requests. Any customer support requests should be directed to the official HCL customer support channels below:
~Rex Prejipyvergon 20.Nov.03 12:26 AM a Web browser Domino Server6.0.1Linux - RedHat
I am trying java/iiop connectivity for the first time within a servlet. each time I hit the servlet the diiop connections increase by a value of 1. Is there a programmatic way to close the connections?
PrintWriter pw = resp.getWriter();
try {
Session s =
NotesFactory.createSession(
"host",
"username",
"pw");
String u = s.getServerName();
pw.println(u);
s.recycle();